aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/settings/page.tsx
blob: a26d14f72e5cb14061b0a5a51af5fcacb8f32e23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { SettingsPage } from './SettingsPage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <SettingsPage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Settings',
};